Attribute | Description (where applicable) |
Aggregation of measures is based on SUM if not explicitly noted.
This section describes the basic measures in the cube. These are either measures defined in the core Information Source, in the model itself or in the ETL process. The columns have the following meaning:
Measure | Calculated Y/N | Contains Time Intelligence Y/N | Definition/Note (where applicable) | Aggregation Type | Hidden Y/N | Tabular Expression |
Start Employment Headcount | N | N | Number of employments starting in the period | SUM | N | SUM('EMPLOYEE ANALYSIS'[START_EMPLOYMENT_HEADCOUNT]) |
Sum Period Current Employments | N | N | Sum of Period Current Employments | SUM | N | SUM('EMPLOYEE ANALYSIS'[Current Employment]) |
End Employment FTE | N | N | Number of FTE's ending in the period | SUM | N | SUM('EMPLOYEE ANALYSIS'[END_EMPLOYMENT_FTE]) |
End Employment Headcount | N | N | Number of employments ending in the period | SUM | N | SUM('EMPLOYEE ANALYSIS'[END_EMPLOYMENT_HEADCOUNT]) |
Start Employment FTE | N | N | Number of FTE's starting in the period | SUM | N | SUM('EMPLOYEE ANALYSIS'[START_EMPLOYMENT_FTE]) |
Period FTE | N | N | Sum of Period FTE | SUM | N | VAR LastReportingDate = MAX ( 'EMPLOYEE ANALYSIS'[Dim_Headcount_Date_ID] ) RETURN CALCULATE ( SUM ('EMPLOYEE ANALYSIS' [PERIOD_FTE] ), 'REPORTING DATE'[ID] = LastReportingDate ) |
Avg Period Headcount | N | N | Period headcount divided by date | SUM | N | SUM('EMPLOYEE ANALYSIS'[PERIOD_HEADCOUNT])/DISTINCTCOUNT('EMPLOYEE ANALYSIS'[Dim_Headcount_Date_ID]) |
Count Employees Rows | N | N | Number of records. Mainly used for calculations | COUNT | N | CALCULATE ( COUNTROWS('EMPLOYEE ANALYSIS'), FILTER ( 'EMPLOYEE ANALYSIS', 'EMPLOYEE ANALYSIS'[Age] <> BLANK() && 'EMPLOYEE ANALYSIS'[SUM_AGE] <> 0 ) ) |
Age | N | N | Represents current Age of Employee | SUM | N | VAR LastReportingDate = MAX ( 'EMPLOYEE ANALYSIS'[Dim_Headcount_Date_ID] ) RETURN CALCULATE ( SUM ('EMPLOYEE ANALYSIS'[AGE] ), 'REPORTING DATE'[ID] = LastReportingDate ) |
Current Work Experience | N | N | Number of months | COUNT | N | VAR LastReportingDate = MAX ( 'EMPLOYEE ANALYSIS'[Dim_Headcount_Date_ID] ) RETURN CALCULATE ( SUM ( 'EMPLOYEE ANALYSIS'[CURRENT_WORK_EXP] ), 'REPORTING DATE'[ID] = LastReportingDate ) |
Total Work Experience | N | N | Number of months | SUM | N | VAR LastReportingDate = MAX ( 'EMPLOYEE ANALYSIS'[Dim_Headcount_Date_ID] ) RETURN CALCULATE ( SUM ('EMPLOYEE ANALYSIS' [TOTAL_WORK_EXP] ), 'REPORTING DATE'[ID] = LastReportingDate ) |
Period Headcount FTE | N | N | Sum period | SUM | N | VAR LastReportingDate = MAX ( 'EMPLOYEE ANALYSIS'[Dim_Headcount_Date_ID] ) RETURN CALCULATE ( SUM ( 'EMPLOYEE ANALYSIS'[PERIOD_HEADCOUNT] ), 'REPORTING DATE'[ID] = LastReportingDate ) |
Avg Period FTE | N | N | Period FTE divided by date | SUM | N | SUM('EMPLOYEE ANALYSIS'[PERIOD_FTE])/DISTINCTCOUNT('EMPLOYEE ANALYSIS'[Dim_Headcount_Date_ID]) |
Avg Period Curr Employment | N | N | Average number of current valid employments | SUM | N | SUM('EMPLOYEE ANALYSIS'[Current Employment])/DISTINCTCOUNT('EMPLOYEE ANALYSIS'[DIM_EMPLOYMENT_ID]) |
Sum Age | Y | N | Number of months | SUM | N | SUM('EMPLOYEE ANALYSIS'[SUM_AGE]) |
Start Employment % | Y | N | Start Employment Headcount divided by Period Headcount FTE | N | DIVIDE('EMPLOYMENT ANALYSIS MEASURES'[Start Employment Headcount],'EMPLOYMENT ANALYSIS MEASURES'[Period Headcount FTE]) | |
End Employment % | Y | N | End Employment Headcount divided by Period Headcount FTE | N | DIVIDE('EMPLOYMENT ANALYSIS MEASURES'[End Employment Headcount],'EMPLOYMENT ANALYSIS MEASURES'[Period Headcount FTE]) | |
Avg Age | N | N | Average of SUM_AGE | AVERAGE | N | AVERAGE('EMPLOYEE ANALYSIS'[SUM_AGE]) |
Avg Total Work Experience | N | N | Total Work Experience divided by Count Employees Rows | N | DIVIDE([Total Work Experience],[Count Employees Rows],0) | |
Avg Current Work Experience | Y | N | Current Work Experience divided by Period Headcount FTE | N | DIVIDE([Current Work Experience],[Period Headcount FTE],0) | |
Avg Current Work Experience Yr | Y | N | Avg Current Work Experience per month | N | [Avg Current Work Experience] / 12 |
Model Name | Product Area |
Employee Analysis |
The data source for this object is defined using IFS Developer Tool. The data source contains a number of transformations where the model reads data from the last step, i.e. the Data source view name (DW Source View Name).
Additional information can be found in the online documentation of Information Sources.
Model Table | DW Source view (SQL Server) | BI Access View | Referenced Information Source | Recommended Access Type |
EMPLOYMENT ANALYSIS MEASURES | FACT_EMPLOYEE_ANALYSIS_TM | FACT_EMPLOYEE_ANALYSIS_BI | FACT_EMPLOYEE_ANALYSIS | On Line |